home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / arm / uninstall < prev    next >
Encoding:
Text File  |  2012-05-18  |  232 b   |  17 lines

  1. #!/bin/sh
  2. files="/usr/bin/arm /usr/share/man/man1/arm.1.gz /usr/share/arm"
  3.  
  4. for i in $files
  5. do
  6.   if [ -f $i -o -d $i ]; then
  7.     rm -rf $i
  8.     
  9.     if [ $? = 0 ]; then
  10.       echo "removed $i"
  11.     else
  12.       exit 1
  13.     fi
  14.   fi
  15. done
  16.  
  17.